home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000191_alweston@netcene.com.NOSPAM_Thu May 31 18:59:41 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  79 lines

  1. Article: 12499 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!howland.erols.net!newsfeed.skycache.com!Cidera!novia!sequencer.newscene.com!not-for-mail
  3. From: Al Weston <alweston@netcene.com.NOSPAM>
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Receive Errors moving from Kermit 6 to Kermit 7
  6. Date: 31 May 2001 17:09:16 -0500
  7. Organization: H.O. Systems, Inc.
  8. Lines: 61
  9. Message-ID: <h1gdhtc52t1p0lidmpqmnqp3fmdo98gch2@4ax.com>
  10. References: <dstchtsrc3st7vt752ojtlivp0d7pb4fa1@4ax.com> <9f62d8$a4e$1@newsmaster.cc.columbia.edu>
  11. Reply-To: alweston@netcene.com.NOSPAM
  12. X-Newsreader: Forte Agent 1.8/32.548
  13. MIME-Version: 1.0
  14. Content-Type: text/plain; charset=us-ascii
  15. Content-Transfer-Encoding: 7bit
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12499
  17.  
  18. That did it! Thanks :)
  19.  
  20.  
  21. On 31 May 2001 18:26:48 GMT, fdc@watsun.cc.columbia.edu (Frank da
  22. Cruz) wrote:
  23.  
  24. >In article <dstchtsrc3st7vt752ojtlivp0d7pb4fa1@4ax.com>,
  25. >Al Weston  <alweston@netcene.com.NOSPAM> wrote:
  26. >: I'm having a problem moving from Kermit 6 to Kermit 7. I have a script
  27. >: that uses kermit to retrieve a file from a dialup server running
  28. >: something called Data Express on a Tandem system. Getting more info on
  29. >: the sending system is like pulling teeth. They don't seem to know what
  30. >: they have.
  31. >: 
  32. >: The script was built for Kermit 6.0.192 running on SCO OpenServer
  33. >: 5.0.5, and it works just fine on this platform. But  the same script
  34. >: when run under Kermit 7.0.196 on AIX 4.3.3 fails every time with an
  35. >: error message of "Refused, format" during the transfer.
  36. >:
  37. >So you are changing two things at once -- the platform and the Kermit
  38. >version.  Usually it's better (though not always possible) to change one
  39. >thing at a time.
  40. >
  41. >: I can connect,
  42. >: login, etc., just fine, but once the file transfer begins, I get the
  43. >: same error every time. The file I'm retrieving is a plain text file.
  44. >: It's the same kind of modem (Hayes Optima) on both systems, and the
  45. >: serial port settings are the same (8N1, 19200).
  46. >: 
  47. >I've heard of this error before.  The Tandem Kermit (one that is not
  48. >known to us) is sending an unknown record-format announcer.  Here is
  49. >packet log from a similar report:
  50. >
  51. >  r-xx-18-<timeout>^M
  52. >  s-00-18-^A# N3^M
  53. >  r-00-20-^A0 S~& @-#Y3~.##M%^M
  54. >  s-00-20-^A9 Y~2 @-#Y3~^>J)0___F"U1@H^M
  55. >  r-01-00-^A-!FF0008938+B:^M
  56. >  s-01-00-^A2!Yachcredit.txt&03^M
  57. >  r-02-01-^AQ"A!!8"!A#120010403 11:42:03*!A."M5/$AM961$8192)(O^M
  58. >
  59. >The attribute packet contains:
  60. >
  61. >  !!8                 = Length in K = 8
  62. >  "!A                 = Text mode
  63. >  #120010403 11:42:03 = File date
  64. >  *!A                 = Text encoding is ASCII
  65. >  ."M5                = OS is Tandem Nonstop
  66. >  /$AM96              = Record format is ?????
  67. >  1$8192              = Length in bytes = 8192
  68. >
  69. >AM96 is not a valid record format.  Since you can't control the Tandem end,
  70. >the workaround is to tell C-Kermit to:
  71. >
  72. >  set attributes off
  73. >
  74. >which makes Kermit ignore the Attribute packet that contains the invalid
  75. >record-format code.
  76. >
  77. >- Frank
  78.  
  79.